summaryrefslogtreecommitdiff
path: root/src/pages/[locale]/furthsettins/scotsoun/index.astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/[locale]/furthsettins/scotsoun/index.astro')
-rw-r--r--src/pages/[locale]/furthsettins/scotsoun/index.astro22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/pages/[locale]/furthsettins/scotsoun/index.astro b/src/pages/[locale]/furthsettins/scotsoun/index.astro
new file mode 100644
index 0000000..cd2e1fe
--- /dev/null
+++ b/src/pages/[locale]/furthsettins/scotsoun/index.astro
@@ -0,0 +1,22 @@
+---
+import Page from '$layouts/Page.astro';
+import localeStaticPaths from '$lib/localeStaticPaths';
+import translate from '$i18n/translate';
+import tPage from '$i18n/translations/pages/scotsounGallery';
+import type Locale from '$types/Locale';
+import ScotsounCdGallery from '$components/ScotsounCdGallery.astro';
+
+export async function getStaticPaths() {
+ return localeStaticPaths;
+}
+
+const locale = Astro.params.locale as Locale;
+const t = translate(locale);
+---
+
+<Page locale={locale} title={t(tPage, { key: 'title' })}>
+ <section class="section--full-width">
+ <h1>Scotsoun</h1>
+ <ScotsounCdGallery />
+ </section>
+</Page>